home *** CD-ROM | disk | FTP | other *** search
/ Columbia Kermit / kermit.zip / newsgroups / misc.19951130-19960209 / 000150_news@columbia.edu _Wed Dec 20 19:35:35 1995.msg < prev    next >
Internet Message Format  |  2020-01-01  |  2KB

  1. Return-Path: news@columbia.edu
  2. Received: from apakabar.cc.columbia.edu (apakabar.cc.columbia.edu [128.59.35.159]) by watsun.cc.columbia.edu (8.7.3/8.7.3) with SMTP id TAA27475 for <kermit.misc@watsun>; Wed, 20 Dec 1995 19:35:34 -0500 (EST)
  3. Received: (from news@localhost) by apakabar.cc.columbia.edu (8.6.12/8.6.12) id TAA27946 for kermit.misc@watsun; Wed, 20 Dec 1995 19:35:31 -0500
  4. Path: news.columbia.edu!watsun.cc.columbia.edu!fdc
  5. From: fdc@watsun.cc.columbia.edu (Frank da Cruz)
  6. Newsgroups: comp.protocols.kermit.misc
  7. Subject: Re: modem ats0
  8. Date: 21 Dec 1995 00:35:27 GMT
  9. Organization: Columbia University
  10. Lines: 42
  11. Message-ID: <4baa4f$r98@apakabar.cc.columbia.edu>
  12. References: <4b7pe9$cs5@ccnet2.ccnet.com>
  13. NNTP-Posting-Host: watsun.cc.columbia.edu
  14. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  15.  
  16. In article <4b7pe9$cs5@ccnet2.ccnet.com>,
  17. Greg Bernard <gbernard@dbc.com> wrote:
  18. : I have PC Kermit 3.18 on a Pentium, with a US Robotics 14.4 or 28.8
  19. :
  20. 3.14, right?
  21.  
  22. : modem (one at work, one at home).  I have a macro in my MSCUSTOM.INI
  23. : file named goserver that I actually got some help with from this group
  24. : a few months ago.  Ignoring the error handling, it goes something like
  25. : this:
  26. : define goserver -
  27. :     set com3 \x3e8 5, -
  28. :     set port 3, -
  29. :     set carrier on, -
  30. :     set server login gbernard gbernard, -
  31. :     set server timeout 0, -
  32. :     server
  33. Now that the world knows your authentication info, be sure to change it :-)
  34.  
  35. : Before I run the macro, I manually issue the command to the modem
  36. : ats0=3 to tell it to pick on (after?) the third ring.  However, if I
  37. : add the lines:
  38. :     out +++,
  39. :     sleep 1,
  40. :     ats0=3,
  41. :     sleep 1,
  42. : after the macro definition and the set com3 line, then the modem will
  43. : *never* pick up - it just rings and rings and rings.
  44. Change the lines above to:
  45.  
  46.     sleep 1,-
  47.     out +++,-
  48.     sleep 1,-
  49.     out ats0=3\13,-
  50.     input 2 OK,-
  51.  
  52. - Frank